home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000396_JDanSkinner@JDanSkinner.com_Tue Sep 21 08:34:03 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!newsfeed1.nycmny01.us.to.verio.net!newspeer1.stngva01.us.to.verio.net!verio!newsfeed.icl.net!newsfeed.fjserv.net!newshosting.com!nx02.iad01.newshosting.com!news.glorb.com!postnews1.google.com!not-for-mail
  2. From: JDanSkinner@JDanSkinner.com (Dan Skinner)
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: surgeftp server, bizarre prepending of filename with mget *
  5. Date: 20 Sep 2004 19:39:42 -0700
  6. Organization: http://groups.google.com
  7. Lines: 63
  8. Message-ID: <8ce22d01.0409201839.4d4d6788@posting.google.com>
  9. References: <jTG3d.31142$ci3.967656@twister.southeast.rr.com> <slrnckufjv.s0f.fdc@sesame.cc.columbia.edu>
  10. NNTP-Posting-Host: 24.159.192.106
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1095734383 23266 127.0.0.1 (21 Sep 2004 02:39:43 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: Tue, 21 Sep 2004 02:39:43 +0000 (UTC)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15172
  17.  
  18. Frank da Cruz <fdc@columbia.edu> wrote in message news:<slrnckufjv.s0f.fdc@sesame.cc.columbia.edu>...
  19. > On 2004-09-20, x@y.org <flyingboz@hotmail.com> wrote:
  20. > : trying to script a setup that will allow me to grab files from a surgeftp
  21. > : server,
  22. > :
  23. > :  Version SurgeFTP 2.2k6 Jul  7 2004
  24. > :
  25. > : i can get a rdir listing of filenames:
  26. > :
  27. > : -rwxrwxrwx   1 owner    group            3585 Sep 17 18:30
  28. > : 445284152.G6116RWE.27S
  29. > : -rwxrwxrwx   1 owner    group             255 Sep 17 16:28
  30. > : 445284152.G6116RWE.997
  31. > : -rwxrwxrwx   1 owner    group           16071 Sep 17 16:28
  32. > : 445284152.G6116RWE.ACC
  33. > : -rwxrwxrwx   1 owner    group               0 Sep 17 16:27
  34. > : 45284152.G6116RWE.ANSI203040917-17115188.dat.BID
  35. > : -rwxrwxrwx   1 owner    group            7238 Sep 17 16:28
  36. > : 445284152.G6116RWE.EXT
  37. > : -rwxrwxrwx   1 owner    group             186 Sep 17 16:28
  38. > : 445284152.G6116RWE.REJ
  39. > :
  40. > : then I try to do execute
  41. > :
  42. > :     ftp mget * t
  43. > :
  44. > : I get the following msg back for each file :
  45. > :
  46. > : [type=file;size=7238;modify=20040917212843;create=20040917212842;perm=radfw
  47. > : 445284152.G6116RWE.EXT]
  48. > :  GET radfw 445284152.G6116RWE.EXT (binary) (7238 bytes)---> PORT
  49. > : 169,254,68,181,6,64
  50. > : 200 PORT command successful.
  51. > : ---> RETR radfw 445284152.G6116RWE.EXT
  52. > : 550 radfw 445284152.G6116RWE.EXT: Cannot open file No such file or directory
  53. > :: MESSAGE: radfw 445284152.G6116RWE.EXT: Cannot open file No such file or
  54. > : directory
  55. > :
  56. > : What on earth is this radfw that is prepending itself to my filename, hence
  57. > : (I believe) causing the RETR to fail?
  58. > :
  59. > It appears the server supports MLSD:
  60. >   http://www.columbia.edu/kermit/newftp.html
  61. > The "radfw" bit is the file permissions reported by the server.  Why is it
  62. > being prepended to the filename?  Beats me.  Exactly which version of Kermit
  63. > are you using?  I'd suggest you tell it to:
  64. >   set ftp debug on
  65. > repeat the download attempt, and then send the resulting transcript to
  66. > kermit-support@columbia.edu .
  67. > - Frank
  68.  
  69. Pardon me for butting in, but if this is what was really sent, it looks like the
  70. semi-colon was omitted after the perm parameter.
  71. following copied from above:
  72. > : [type=file;size=7238;modify=20040917212843;create=20040917212842;perm=radfw
  73. > : 445284152.G6116RWE.EXT]
  74.  
  75. Regards...Dan.